home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / share / multimed / myflix_win32 / myflix_win32.exe / data1.cab / Libraries / tk8.0 / Tk.tcl < prev    next >
Text File  |  1998-03-10  |  5KB  |  188 lines

  1. # tk.tcl --
  2. #
  3. # Initialization script normally executed in the interpreter for each
  4. # Tk-based application.  Arranges class bindings for widgets.
  5. #
  6. # SCCS: @(#) tk.tcl 1.97 97/06/13 14:57:46
  7. #
  8. # Copyright (c) 1992-1994 The Regents of the University of California.
  9. # Copyright (c) 1994-1996 Sun Microsystems, Inc.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13.  
  14. # Insist on running with compatible versions of Tcl and Tk.
  15.  
  16. package require -exact Tk 8.0
  17. package require -exact Tcl 8.0
  18.  
  19. # Add Tk's directory to the end of the auto-load search path, if it
  20. # isn't already on the path:
  21.  
  22. if {[info exists auto_path]} {
  23.     if {[lsearch -exact $auto_path $tk_library] < 0} {
  24.     lappend auto_path $tk_library
  25.     }
  26. }
  27.  
  28. # Turn off strict Motif look and feel as a default.
  29.  
  30. set tk_strictMotif 0
  31.  
  32. # tkScreenChanged --
  33. # This procedure is invoked by the binding mechanism whenever the
  34. # "current" screen is changing.  The procedure does two things.
  35. # First, it uses "upvar" to make global variable "tkPriv" point at an
  36. # array variable that holds state for the current display.  Second,
  37. # it initializes the array if it didn't already exist.
  38. #
  39. # Arguments:
  40. # screen -        The name of the new screen.
  41.  
  42. proc tkScreenChanged screen {
  43.     set x [string last . $screen]
  44.     if {$x > 0} {
  45.     set disp [string range $screen 0 [expr $x - 1]]
  46.     } else {
  47.     set disp $screen
  48.     }
  49.  
  50.     uplevel #0 upvar #0 tkPriv.$disp tkPriv
  51.     global tkPriv
  52.     global tcl_platform
  53.  
  54.     if [info exists tkPriv] {
  55.     set tkPriv(screen) $screen
  56.     return
  57.     }
  58.     set tkPriv(afterId) {}
  59.     set tkPriv(buttons) 0
  60.     set tkPriv(buttonWindow) {}
  61.     set tkPriv(dragging) 0
  62.     set tkPriv(focus) {}
  63.     set tkPriv(grab) {}
  64.     set tkPriv(initPos) {}
  65.     set tkPriv(inMenubutton) {}
  66.     set tkPriv(listboxPrev) {}
  67.     set tkPriv(menuBar) {}
  68.     set tkPriv(mouseMoved) 0
  69.     set tkPriv(oldGrab) {}
  70.     set tkPriv(popup) {}
  71.     set tkPriv(postedMb) {}
  72.     set tkPriv(pressX) 0
  73.     set tkPriv(pressY) 0
  74.     set tkPriv(prevPos) 0
  75.     set tkPriv(screen) $screen
  76.     set tkPriv(selectMode) char
  77.     if {[string compare $tcl_platform(platform) "unix"] == 0} {
  78.     set tkPriv(tearoff) 1
  79.     } else {
  80.     set tkPriv(tearoff) 0
  81.     }
  82.     set tkPriv(window) {}
  83. }
  84.  
  85. # Do initial setup for tkPriv, so that it is always bound to something
  86. # (otherwise, if someone references it, it may get set to a non-upvar-ed
  87. # value, which will cause trouble later).
  88.  
  89. tkScreenChanged [winfo screen .]
  90.  
  91. # tkEventMotifBindings --
  92. # This procedure is invoked as a trace whenever tk_strictMotif is
  93. # changed.  It is used to turn on or turn off the motif virtual
  94. # bindings.
  95. #
  96. # Arguments:
  97. # n1 - the name of the variable being changed ("tk_strictMotif").
  98.  
  99. proc tkEventMotifBindings {n1 dummy dummy} {
  100.     upvar $n1 name
  101.     
  102.     if $name {
  103.     set op delete
  104.     } else {
  105.     set op add
  106.     }
  107.  
  108.     event $op <<Cut>> <Control-Key-w>
  109.     event $op <<Copy>> <Meta-Key-w> 
  110.     event $op <<Paste>> <Control-Key-y>
  111. }
  112.  
  113. #----------------------------------------------------------------------
  114. # Define the set of common virtual events.
  115. #----------------------------------------------------------------------
  116.  
  117. switch $tcl_platform(platform) {
  118.     "unix" {
  119.     event add <<Cut>> <Control-Key-x> <Key-F20> 
  120.     event add <<Copy>> <Control-Key-c> <Key-F16>
  121.     event add <<Paste>> <Control-Key-v> <Key-F18>
  122.     trace variable tk_strictMotif w tkEventMotifBindings
  123.     set tk_strictMotif $tk_strictMotif
  124.     }
  125.     "windows" {
  126.     event add <<Cut>> <Control-Key-x> <Shift-Key-Delete>
  127.     event add <<Copy>> <Control-Key-c> <Control-Key-Insert>
  128.     event add <<Paste>> <Control-Key-v> <Shift-Key-Insert>
  129.     }
  130.     "macintosh" {
  131.     event add <<Cut>> <Control-Key-x> <Key-F2> 
  132.     event add <<Copy>> <Control-Key-c> <Key-F3>
  133.     event add <<Paste>> <Control-Key-v> <Key-F4>
  134.     event add <<Clear>> <Clear>
  135.     }
  136. }
  137.  
  138. # ----------------------------------------------------------------------
  139. # Read in files that define all of the class bindings.
  140. # ----------------------------------------------------------------------
  141.  
  142. if {$tcl_platform(platform) != "macintosh"} {
  143.     source $tk_library/button.tcl
  144.     source $tk_library/entry.tcl
  145.     source $tk_library/listbox.tcl
  146.     source $tk_library/menu.tcl
  147.     source $tk_library/scale.tcl
  148.     source $tk_library/scrlbar.tcl
  149.     source $tk_library/text.tcl
  150. }
  151.  
  152. # ----------------------------------------------------------------------
  153. # Default bindings for keyboard traversal.
  154. # ----------------------------------------------------------------------
  155.  
  156. bind all <Tab> {tkTabToWindow [tk_focusNext %W]}
  157. bind all <Shift-Tab> {tkTabToWindow [tk_focusPrev %W]}
  158.  
  159. # tkCancelRepeat --
  160. # This procedure is invoked to cancel an auto-repeat action described
  161. # by tkPriv(afterId).  It's used by several widgets to auto-scroll
  162. # the widget when the mouse is dragged out of the widget with a
  163. # button pressed.
  164. #
  165. # Arguments:
  166. # None.
  167.  
  168. proc tkCancelRepeat {} {
  169.     global tkPriv
  170.     after cancel $tkPriv(afterId)
  171.     set tkPriv(afterId) {}
  172. }
  173.  
  174. # tkTabToWindow --
  175. # This procedure moves the focus to the given widget.  If the widget
  176. # is an entry, it selects the entire contents of the widget.
  177. #
  178. # Arguments:
  179. # w - Window to which focus should be set.
  180.  
  181. proc tkTabToWindow {w} {
  182.     if {"[winfo class $w]" == "Entry"} {
  183.     $w select range 0 end
  184.     $w icur end
  185.     }
  186.     focus $w
  187. }
  188.